home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 34.zip / BS1 part 34 / Aztec C 5.0a disk 1.adf / include / stat.h < prev    next >
C/C++ Source or Header  |  1988-12-22  |  421b  |  26 lines

  1. /* Copyright Manx Software Systems, Inc. 1988.  All rights reserved */
  2.  
  3. #ifndef __STAT_H 
  4. #define __STAT_H 
  5.  
  6. struct stat {
  7.     char st_attr;
  8.     long st_mtime;
  9.     long st_size;
  10. };
  11.  
  12. /* settings of the st_attr field */
  13. #define    ST_DELETE    0x01
  14. #define    ST_EXECUTE    0x02
  15. #define    ST_WRITE    0x04
  16. #define    ST_READ        0x08
  17.  
  18. /* the format of the st_mtime field is:
  19.     seconds since Jan 1, 1978
  20. */
  21.  
  22. int stat(char *name, struct stat *buf);
  23.  
  24. #endif
  25.  
  26.